home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’94 / [√] Distribution Restricted! / James Ullrey / HP-15C / HP-15C.FPU68020 / HP-15C.FPU68020.rsrc / TEXT_1033_Nested Calculations.txt < prev    next >
Text File  |  1994-06-25  |  2KB  |  48 lines

  1. - NESTED CALCULATIONS          
  2. NESTED CALCULATIONS
  3.  
  4. The automatic stack lift and stack drop make it possible to do calculations without using parenthesis or storing intermediate results.  A nested calculation is solved simply as a series of one- and two-number operations.
  5.  
  6. Almost every nested calculation you are likely to encounter can be done using just the four stack registers.  It is usually wisest to begin the calculation at the innermost number or pair of parentheses and work outward(as you would for a manual calculation). Otherwise, you may need to place an intermediate result into a storage register. For example, consider the calculation of
  7.  
  8.           3[4+5(6+7)]:
  9.  
  10. Keystrokes       Display
  11. 6 ENTER 7 +      13.0000
  12.       Intermediate result of (6+7).
  13.  
  14. 5 *              65.0000
  15.       Intermediate result of 5(6+7).
  16.  
  17. 4 +              69.0000
  18. Intermediate result of[4+5(6+7)].
  19.  
  20. 3 *             207.0000
  21.            Final result: 3[4+5(6+7)].
  22.  
  23. The following sequence illustrates the stack manipulation in this example. The stack automatically drops after each two-number calculation, and then lifts when a new number is keyed in. (For simplicity, throughout the rest of the examples no arrows between stacks will be shown.)
  24.  
  25. T    t      z      y      y      y
  26. Z    z      y      x      x      y
  27. Y    y      x      6      6      x
  28. X    x      6      6      7     13
  29.  
  30. Keys:    6    ENTER    7      + 
  31.  
  32. T    y      y      y      y
  33. Z    y      x      y      x
  34. Y    x     13      x     65
  35. X   13      5     65      4
  36.  
  37. Keys:  5      *       4
  38.  
  39. T    y      y      y      y
  40. Z    x      y      x      y
  41. Y   65      x     69      x
  42. X    4     69      3    207
  43.  
  44. Keys:    +       3     *
  45.  
  46. See "ARITHMATIC CALCULATIONS WITH CONSTANTS" this help
  47.  
  48.